home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / amigalib / pool.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-26  |  413 b   |  20 lines

  1. #include <exec/lists.h>
  2. #include <exec/memory.h>
  3. #include <exec/execbase.h>
  4. #include <clib/alib_protos.h>
  5. #include <clib/exec_protos.h>
  6.  
  7. extern struct ExecBase *SysBase;
  8.  
  9. /*     our PRIVATE! memory pool structure
  10.    (_NOT_ compatible with original amiga.lib!) */
  11.  
  12. typedef struct Pool
  13. {
  14.   struct MinList PuddleList;
  15.   struct MinList ThreshList;
  16.   ULONG MemoryFlags;
  17.   ULONG PuddleSize;
  18.   ULONG ThreshSize;
  19. } POOL;
  20.